home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19971216-19980424 / 000164_news@newsmaster….columbia.edu _Tue Feb 3 10:02:12 1998.msg < prev    next >
Internet Message Format  |  1998-04-22  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA12363
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 3 Feb 1998 10:02:11 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA17942
  7.     for kermit.misc@watsun; Tue, 3 Feb 1998 10:02:09 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: user winmodem problems
  12. Date: 3 Feb 1998 15:02:09 GMT
  13. Organization: Columbia University
  14. Lines: 38
  15. Message-ID: <6b7bhh$nc3$1@apakabar.cc.columbia.edu>
  16. References: <6b7apr$62p@bgtnsc03.worldnet.att.net>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8347
  19.  
  20. In article <6b7apr$62p@bgtnsc03.worldnet.att.net>,
  21.  <mgibby@worldnet.att.net> wrote:
  22. : I have a user with an internal winmodem.  No docs on the modem are
  23. : available.  It works fine with aol but with kermit 95 it doesnt.  I
  24. : have tried the modem type tapi and set line tapi commands, this gets
  25. : it to at least recognize the modem, but when it attempts to dial i get
  26. : sounds like a rotary phone.  No connection.... I have the line about
  27. : tone dialing already in....Any suggestions on what to try?
  28. Oops, sorry, I didn't read far enough the first time.  About Tone versus
  29. rotary dialing, from the Kermit FAQ:
  30.  
  31.   http://www.columbia.edu/kermit/faq.html
  32.   ftp://kermit.columbia.edu/kermit/faq.txt
  33.  
  34. 39 Tone Dialing Changes to Pulse after First Digit
  35.  
  36. Some modems have a feature called adaptive dialing.  When they are told to dial
  37. a number using Tone dialing, they check to make sure that dialtone has gone
  38. away after dialing the first digit.  If it has not, the modem assumes the phone
  39. line does not accept Tone dialing and so switches to Pulse.
  40.  
  41. When dialing out from a PBX, there is almost always a secondary dialtone.
  42. Typically you take the phone off-hook, get the PBX dialtone, dial "9" (or other
  43. number) to get an outside line, and then get the phone company's dialtone.  In
  44. a situation like this, you need to tell the modem to expect the secondary
  45. dialtone.  On Hayes and compatible modems, this is done by putting a "W" in the
  46. dial string at the appropriate place.  For example, to dial 9 for an outside
  47. line, and then 7654321, use ATDT9W7654321.  In C-Kermit and Kermit 95, this is
  48. accomplished with:
  49.  
  50. SET DIAL PBX-OUTSIDE-PREFIX 9W
  51.  
  52. (replace "9" with your PBX's outside-line prefix).
  53.  
  54. (This text also appears in the K95 BUGS.TXT file as item 134.)
  55.  
  56. - Frank